Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@polymer/iron-scroll-target-behavior
Advanced tools
IronScrollTargetBehavior
allows an element to respond to scroll events from a
designated scroll target.
Elements that consume this behavior can override the _scrollHandler
method to add logic on the scroll event.
See: Documentation, Demo.
npm install --save @polymer/iron-scroll-target-behavior
import {PolymerElement, html} from '@polymer/polymer';
import {mixinBehaviors} from '@polymer/polymer/lib/legacy/class.js';
import {IronScrollTargetBehavior} from '@polymer/iron-scroll-target-behavior/iron-scroll-target-behavior.js';
class SampleElement extends mixinBehaviors(IronScrollTargetBehavior, PolymerElement) {
static get template() {
return html`
<p>Scrollable content here</p>
`;
}
_scrollHandler() {
console.log('_scrollHandler', this._scrollTop, this._scrollLeft);
}
}
customElements.define('sample-element', SampleElement);
If you want to send a PR to this element, here are the instructions for running the tests and demo locally:
git clone https://github.com/PolymerElements/iron-scroll-target-behavior
cd iron-scroll-target-behavior
npm install
npm install -g polymer-cli
polymer serve --npm
open http://127.0.0.1:<port>/demo/
polymer test --npm
FAQs
Allows to define a scroller target
The npm package @polymer/iron-scroll-target-behavior receives a total of 19,886 weekly downloads. As such, @polymer/iron-scroll-target-behavior popularity was classified as popular.
We found that @polymer/iron-scroll-target-behavior demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.